home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / Unprotected Memory / MyProcessWorker.h < prev    next >
Encoding:
Text File  |  2001-06-23  |  194 b   |  15 lines

  1. #import <Foundation/Foundation.h>
  2.  
  3. @interface MyProcessWorker : NSObject
  4. {
  5.     pid_t    myLastSeenPID;
  6.     int        myCrashCount;
  7. }
  8.  
  9. - (id)init;
  10. - (void)walkProcessList;
  11.  
  12. - (void)myThreadMain:(id)arg;
  13.  
  14. @end
  15.